The String iterator iterates over the String by code points.
String
[Symbol.iterator]()
for (let ch of "hello") { print(ch) }
h e l l o